home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / misc / amag / sh9301e.lha / Maxon-CPP-Demo / Include / stddef.h < prev    next >
C/C++ Source or Header  |  1993-02-17  |  217b  |  16 lines

  1. #ifndef _INCLUDE_STDDEF_H
  2. #define _INCLUDE_STDDEF_H
  3.  
  4. #ifndef NULL
  5. #define NULL 0
  6. #endif
  7.  
  8. #define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
  9.  
  10. typedef unsigned size_t;
  11. typedef int ptrdiff_t;
  12. typedef int wchar_t;
  13.  
  14. #endif
  15.  
  16.